home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / OFFSCREE / STARTER.C < prev   
C/C++ Source or Header  |  1991-04-24  |  498b  |  27 lines

  1. /******************************************************************************
  2.  
  3.   Starter.c
  4.  
  5.      A starter main file for writing programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright ⌐ 1990 Symantec Corporation.  All rights reserved.
  9.   
  10. ******************************************************************************/
  11.  
  12.  
  13. #include "CStarterApp.h"
  14.  
  15.  
  16. void main()
  17.  
  18. {
  19.     CStarterApp    *StarterApp;                    
  20.  
  21.     StarterApp = new CStarterApp;
  22.     
  23.     StarterApp->IStarterApp();
  24.     StarterApp->Run();
  25.     StarterApp->Exit();
  26. }
  27.